[tool] Adjust error message when downgrade fails#10734
Merged
auto-submit[bot] merged 2 commits intoflutter:mainfrom Jan 29, 2026
Merged
[tool] Adjust error message when downgrade fails#10734auto-submit[bot] merged 2 commits intoflutter:mainfrom
downgrade fails#10734auto-submit[bot] merged 2 commits intoflutter:mainfrom
Conversation
Since `pub downgrade` runs package resolution, failure in that step can simply mean that resolution has failed, rather than indicating a problem with the actual downgrade process. This adjusts the message to make it clear that it's a potential resolver failure, to aid in understanding failures. Fixes flutter/flutter#178815
There was a problem hiding this comment.
Code Review
This pull request adjusts the error message for a failed pub downgrade command within the analyze tool. The message is changed from "Unable to downgrade dependencies" to "Unable to resolve downgraded dependencies" to clarify that the failure is likely due to package resolution issues. A corresponding test that checks for this error message has also been updated.
Contributor
|
autosubmit label was removed for flutter/packages/10734, because - The status or check suite Mac_arm64 ios_platform_tests_shard_3 master has failed. Please fix the issues identified (or deflake) before re-applying this label. |
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Jan 30, 2026
github-merge-queue bot
pushed a commit
to flutter/flutter
that referenced
this pull request
Jan 30, 2026
flutter/packages@cd4fd61...510dd40 2026-01-30 engine-flutter-autoroll@skia.org Roll Flutter (stable) from bd7a4a6 to 67323de (3 revisions) (flutter/packages#10924) 2026-01-29 engine-flutter-autoroll@skia.org Roll Flutter from dfd92b7 to da72d59 (39 revisions) (flutter/packages#10923) 2026-01-29 43054281+camsim99@users.noreply.github.com [camera_android_camerax] Retrieve lens direction from CameraX directly (flutter/packages#10847) 2026-01-29 stuartmorgan@google.com [tool] Adjust error message when `downgrade` fails (flutter/packages#10734) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-packages-flutter-autoroll Please CC flutter-ecosystem@google.com on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
LongCatIsLooong
pushed a commit
to LongCatIsLooong/flutter
that referenced
this pull request
Feb 6, 2026
…r#181726) flutter/packages@cd4fd61...510dd40 2026-01-30 engine-flutter-autoroll@skia.org Roll Flutter (stable) from bd7a4a6 to 67323de (3 revisions) (flutter/packages#10924) 2026-01-29 engine-flutter-autoroll@skia.org Roll Flutter from dfd92b7 to da72d59 (39 revisions) (flutter/packages#10923) 2026-01-29 43054281+camsim99@users.noreply.github.com [camera_android_camerax] Retrieve lens direction from CameraX directly (flutter/packages#10847) 2026-01-29 stuartmorgan@google.com [tool] Adjust error message when `downgrade` fails (flutter/packages#10734) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-packages-flutter-autoroll Please CC flutter-ecosystem@google.com on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
flutter-zl
pushed a commit
to flutter-zl/flutter
that referenced
this pull request
Feb 10, 2026
…r#181726) flutter/packages@cd4fd61...510dd40 2026-01-30 engine-flutter-autoroll@skia.org Roll Flutter (stable) from bd7a4a6 to 67323de (3 revisions) (flutter/packages#10924) 2026-01-29 engine-flutter-autoroll@skia.org Roll Flutter from dfd92b7 to da72d59 (39 revisions) (flutter/packages#10923) 2026-01-29 43054281+camsim99@users.noreply.github.com [camera_android_camerax] Retrieve lens direction from CameraX directly (flutter/packages#10847) 2026-01-29 stuartmorgan@google.com [tool] Adjust error message when `downgrade` fails (flutter/packages#10734) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-packages-flutter-autoroll Please CC flutter-ecosystem@google.com on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Since
pub downgraderuns package resolution, failure in that step can simply mean that resolution has failed, rather than indicating a problem with the actual downgrade process. This adjusts the message to make it clear that it's a potential resolver failure, to aid in understanding failures.Fixes flutter/flutter#178815